This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
~Rebecca Asaponechekakol 17.Dec.03 04:02 PM a Web browser GeneralAll ReleasesAll Platforms
hi,
what i need is an item with several date/time values...
i have a string: 17.12.2003;18.12.2003
then i create an array:
Dim tokens(1 To 50) As NotesDateTime
...my parser does this each time if the value isnt empty
Set tokens(pos) = New NotesDateTime(Mid$(text,start,count-1))
so i have an array with 2 entries, then i append it to a document:
Call backdoc.ReplaceItemValue("CalendarDateTime",tokens)
Call backdoc.Save(true,false)
but the field is empty and of type text...
i dont know whats wrong. when i create a list of strings it works...